home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1996 September / JCSM Shareware Collection (JCS Distribution) (September 1996).ISO / gameothr / wordy411.zip / PREFIX.C < prev    next >
C/C++ Source or Header  |  1995-12-17  |  7KB  |  238 lines

  1. /**************************************************************************/
  2. /*                             Prefix  Utility                            */
  3. /*                                                                        */
  4. /*                                 M\Cooper                               */
  5. /*                        3425 Chestnut Ridge Rd.                         */
  6. /*                        Grantsville, MD 21536-9801                      */
  7. /*                        --------------------------                      */
  8. /*                        Email:  thegrendel@aol.com                      */
  9. /*                                                                        */
  10. /*                $2.00 to register the entire WORDY package              */
  11. /*                                                                        */
  12. /**************************************************************************/
  13.  
  14.  
  15. #include <conio.h>
  16. #include "srch.h"
  17.  
  18.  
  19. #define FILE_OPENING_ERROR 3
  20. #define FILENAME_MAXLEN 8
  21. #define CR "\n"
  22. #define FILE_SUFFIX ".pre"
  23. #define MAXLEN 30
  24. #define LINE_LEN 80
  25. #define NOARGS 1
  26. #define INCREMENT 0
  27. #define SPACE ' '
  28. #define WD 8
  29.  
  30. #define BUFFERSIZE 8192
  31.  
  32. char ad[] =
  33. "PREFIX utility by M\\Cooper, 3425 Chestnut Ridge Rd., Grantsville, MD 21536";
  34.  
  35. typedef enum { FALSE, TRUE } Boolean;
  36.  
  37. void getword( char *lset, char *filenam );
  38. void center( char *strng );
  39. Boolean wordtest( char *lset, char *wd, size_t len );
  40.  
  41.  
  42. void main( int argc, char **argv )
  43. {
  44.  
  45.    char letterset [ MAXLEN ],
  46.         filename [ MAXLEN ];
  47.  
  48.      if( argc == NOARGS )
  49.         {
  50.         clrscr();
  51.         puts("Enter a LETTERSET to test ... ");
  52.         gets( letterset );
  53.      strcpy( filename, "word.lst" );
  54.         }
  55.   else
  56.         if( argc == NOARGS + 1 )
  57.         {
  58.            strcpy( letterset, *( argv + 1 ) );
  59.         strcpy( filename, "word.lst" );
  60.         }
  61.      else
  62.          {
  63.          strcpy( letterset, *( argv + 1 ) );
  64.          strcpy( filename,  *( argv + 2 ) );
  65.          }
  66.  
  67.      getword( letterset, filename );
  68. }
  69.  
  70.  
  71. /**********************************WORDTEST********************************/
  72. /*       Function tests if word is constructible from Letterset           */
  73. /*                 Args in: char *letterset, char *word                   */
  74. /*   Returns: error_flag == TRUE (1) if constructible, FALSE (0) if not   */
  75. /**************************************************************************/
  76.  
  77. Boolean wordtest( char *letterset, char *word, size_t l_len )
  78. {
  79.     Boolean error_flag;
  80.  
  81.       if( !strncmp( letterset, word, l_len ) )
  82.          error_flag = TRUE;
  83.       else
  84.          error_flag = FALSE;
  85.         return( error_flag );
  86. }
  87.  
  88. /****************************************************************************/
  89.  
  90. void getword( char *letter_set, char *filename )
  91. {
  92.  
  93.     char    l_set [ MAXLEN ],
  94.         word [ MAXLEN ],
  95.         tempstr [ MAXLEN + 1 ],
  96.         targetfile [ MAXLEN ],
  97.    wd [ WD ],
  98.    wd2 [ WD ],
  99.         bar [ LINE_LEN + 1 ],
  100.         double_bar [ LINE_LEN + 1 ];
  101.    size_t l_len;
  102.  
  103.     FILE *fptr,
  104.         *tfile;
  105.     int fnamelen;
  106.     long wcount = 0L;
  107.  
  108.  
  109.       l_len = strlen( letter_set );
  110.        memset( bar, '-', LINE_LEN );
  111.        *( bar + LINE_LEN ) = NULL;
  112.        memset( double_bar, '=', LINE_LEN );
  113.        *( double_bar + LINE_LEN ) = NULL;
  114.  
  115.        /*************opening credits*************/
  116.        clrscr();
  117.        printf( double_bar );
  118.        strcpy( tempstr, ad );
  119.        center ( tempstr );
  120.        printf( tempstr );
  121.        printf( CR );
  122.        printf( double_bar );
  123.        printf( CR );
  124.        /****************************************/
  125.  
  126.  
  127.        strcpy ( l_set, letter_set );
  128. //       strcat ( letter_set, CR );
  129.  
  130.        /*   Create name of file to store derived words in   */
  131.        /*********************************************************/
  132.        fnamelen = strlen( l_set );
  133.        if( fnamelen  > FILENAME_MAXLEN )
  134.           fnamelen = FILENAME_MAXLEN;
  135.        strncpy( targetfile, l_set, fnamelen );
  136.        *( targetfile + fnamelen ) = NULL;
  137.        //NULL-terminate string, so strcat works, ha, ha.
  138.        strcat( targetfile, FILE_SUFFIX );
  139.        /*********************************************************/
  140.  
  141.        if( !( fptr = fopen( filename, "rt" ) ) )
  142.          {
  143.          printf( "\7\7\7Cannot open Wordfile!" );
  144.          exit( FILE_OPENING_ERROR );
  145.          }
  146.       if( setvbuf( fptr, NULL, _IOFBF, BUFFERSIZE * 2 ) )
  147.          exit( FILE_OPENING_ERROR + 1 );
  148.  
  149.        if( !( tfile = fopen( targetfile, "wt" ) ) )
  150.          {
  151.          printf( "\7\7\7Cannot open file to save words in!" );
  152.          exit ( FILE_OPENING_ERROR + 2 );
  153.          }
  154.       if( setvbuf( tfile, NULL, _IOFBF, BUFFERSIZE ) )
  155.          exit( FILE_OPENING_ERROR + 3 );
  156.  
  157.        /**************'Wait' Message************/
  158.        printf( CR CR );
  159.        printf( "WORKING...\n\n" );
  160.        printf( "This will take a few seconds...\n" );
  161.        printf( "Please be patient.\n\n" );
  162.        printf(
  163. "Now searching 100,000+ word file \nand writing file of valid words prefixed -%s-.\n\n",
  164.             letter_set );
  165.        /*****************************************/
  166.  
  167.  
  168.  
  169.  
  170.  
  171.        sprintf( tempstr, "Word(s) created from: %s\n", strupr( l_set ) );
  172.        center( tempstr );
  173.        fprintf( tfile, double_bar );
  174.       fprintf( tfile, CR );
  175.        fprintf( tfile, tempstr );
  176.        fprintf( tfile, double_bar );
  177.        fprintf( tfile, CR );
  178.  
  179.  
  180.          /*********************Main Loop*************/     
  181.           while( fgets( word, MAXLEN, fptr ) != NULL )
  182.  
  183.             if( wordtest( letter_set, word, l_len ) )
  184.                {
  185.                fprintf( tfile, "%s", word );
  186.                wcount++;
  187.                }
  188.           /*******************************************/
  189.  
  190.       if( wcount == 1)
  191.          {
  192.          strcpy( wd, "word" );
  193.          strcpy( wd2, "has" );
  194.          }
  195.       else
  196.          {
  197.          strcpy( wd, "words" );
  198.          strcpy( wd2, "have" );
  199.          }
  200.  
  201.           fprintf( tfile, bar );
  202.       fprintf( tfile, CR );
  203.           sprintf( tempstr, "%ld %s prefixed %s %s been found.",
  204.                  wcount - INCREMENT, wd, l_set, wd2 );
  205.           center( tempstr );              
  206.           fprintf( tfile, tempstr );
  207.           fprintf( tfile, "\n\n" );
  208.  
  209.           center( ad );
  210.           fprintf( tfile, ad );
  211.  
  212.           fcloseall();
  213.  
  214.           sprintf( tempstr,
  215.                  "The file %s has %ld %s prefixed %s\7.",
  216.                  targetfile, wcount - INCREMENT, wd, l_set );
  217.           center( tempstr );
  218.           printf( CR CR );
  219.           printf( tempstr );
  220.  
  221. }
  222.  
  223.  
  224.  
  225. void center( char *str )
  226. {
  227.    int padding;
  228.    char st [ LINE_LEN + INCREMENT ];
  229.  
  230.      padding = LINE_LEN / 2 - strlen( str ) / 2;
  231.      memset( st, SPACE, padding );
  232.      *( st + padding ) = NULL;  //Terminate string
  233.      strcat( st, str );
  234.      strcpy( str, st );
  235.  
  236.      return;
  237. }
  238.